缺少常用库报错 和 安装命令
No module named ‘PIL’
pip install Pillow
No module named ‘yaml’
pip install pyyaml
其他报错
1 解决python安装第三方包时候,报错 error: Unable to find vcvarsall.bat
对应python版本安装下面程序:
https://blogs.msdn.microsoft.com/pythonengineering/2016/04/11/unable-to-find-vcvarsall-bat/#comments
2 pyinstaller ImportError: The ‘packaging’ package is required; …
使用 pip list 查看已经安装的包,发现是setuptools包的版本太高,环境里的setuptools版本是20.x.x。
果断卸载并安装低版本的setuptools(19.2),如下:1
2pip uninstall setuptools
pip install setuptools==19.2